home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / me_cd25.zip / ME2MUTT.ZIP / ASCII.MUT < prev    next >
Text File  |  1992-11-09  |  238b  |  16 lines

  1. (include me2.h)
  2. (include mod.mut)
  3.  
  4. (defun
  5.   all-the-ASCII-characters
  6.   {
  7.     (int j)
  8.  
  9.     (for (j 1) (< j 256) (+= j 1)
  10.     {
  11.       (insert-text (convert-to CHARACTER j))
  12.       (if (== 0 (mod j 32)) (newline))
  13.     })
  14.   }
  15. )
  16.